home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / RBBS.SCR < prev    next >
Text File  |  1986-02-15  |  806b  |  30 lines

  1. . This Script can be customized easily for RBBS Auto Logons
  2. .
  3. . Replace FIRSTNAME with your real first name.
  4. . Replace LASTNAME with your real last name.
  5. . Replace PASSWORD with you normal password.
  6.  
  7. Note      Logging onto an RBBS
  8.  
  9. Timeout   30 Halt                    Waitfor limit to 30, error goto Halt
  10.  
  11. Waitfor   'More (Y)'                 Wait for the string
  12. Send      'N{'                       Send N   { = <CR>
  13.  
  14. Waitfor   'Name'
  15. Send      'FIRSTNAME;LASTNAME;PASSWORD{'
  16.  
  17. Timeout   30 Continue                If the Board remembers us, skip
  18. Waitfor   'More (Y)'                   the next Waitfor...
  19. Send      'N{'                           Goto Continue
  20.  
  21. Continue:
  22.  
  23. Note      You are now logged on!
  24. Exit
  25.  
  26. Halt:
  27.  
  28. Note      Unsuccessful Attempt.
  29. Note      Script Halted
  30.